home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_483_flame2.ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  1.1 KB  |  38 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  3. end
  4.  
  5. on mouseDown
  6.   global gWhereWeveGone
  7.   if the locH of sprite 50 <> 400 then
  8.     set the member of sprite 60 to "flame1"
  9.     set the visible of sprite 61 to 0
  10.     repeat with ogg = 22 to 49
  11.       set the visible of sprite ogg to 0
  12.     end repeat
  13.     do("cleanUp" & gWhereWeveGone & "Section")
  14.     repeat while the right of sprite 21 > 160
  15.       set the locH of sprite 21 to the locH of sprite 21 - 10
  16.       updateStage()
  17.     end repeat
  18.     set the locH of sprite 21 to -400
  19.     set the locH of sprite 50 to -240
  20.     repeat while the right of sprite 50 < 800
  21.       set the locH of sprite 50 to the locH of sprite 50 + 10
  22.       updateStage()
  23.     end repeat
  24.     repeat with ugg = 51 to 58
  25.       set the visible of sprite ugg to 1
  26.     end repeat
  27.     repeat with x = 1 to 61
  28.       set the cursor of sprite x to 0
  29.     end repeat
  30.     set the member of sprite 61 to "quit loop"
  31.     set the visible of sprite 61 to 1
  32.   end if
  33. end
  34.  
  35. on mouseLeave
  36.   set the cursor of sprite the currentSpriteNum to 0
  37. end
  38.